home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / chardet / mbcsgroupprober.py < prev    next >
Text File  |  2006-10-21  |  2KB  |  51 lines

  1. ######################## BEGIN LICENSE BLOCK ########################
  2. # The Original Code is Mozilla Universal charset detector code.
  3. #
  4. # The Initial Developer of the Original Code is
  5. # Netscape Communications Corporation.
  6. # Portions created by the Initial Developer are Copyright (C) 2001
  7. # the Initial Developer. All Rights Reserved.
  8. #
  9. # Contributor(s):
  10. #   Mark Pilgrim - port to Python
  11. #   Shy Shalom - original C code
  12. #   Proofpoint, Inc.
  13. #
  14. # This library is free software; you can redistribute it and/or
  15. # modify it under the terms of the GNU Lesser General Public
  16. # License as published by the Free Software Foundation; either
  17. # version 2.1 of the License, or (at your option) any later version.
  18. # This library is distributed in the hope that it will be useful,
  19. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  21. # Lesser General Public License for more details.
  22. # You should have received a copy of the GNU Lesser General Public
  23. # License along with this library; if not, write to the Free Software
  24. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  25. # 02110-1301  USA
  26. ######################### END LICENSE BLOCK #########################
  27.  
  28. from charsetgroupprober import CharSetGroupProber
  29. from utf8prober import UTF8Prober
  30. from sjisprober import SJISProber
  31. from eucjpprober import EUCJPProber
  32. from gb2312prober import GB2312Prober
  33. from euckrprober import EUCKRProber
  34. from big5prober import Big5Prober
  35. from euctwprober import EUCTWProber
  36.  
  37. class MBCSGroupProber(CharSetGroupProber):
  38.     def __init__(self):
  39.         CharSetGroupProber.__init__(self)
  40.         self._mProbers = [ \
  41.             UTF8Prober(),
  42.             SJISProber(),
  43.             EUCJPProber(),
  44.             GB2312Prober(),
  45.             EUCKRProber(),
  46.             Big5Prober(),
  47.             EUCTWProber()]
  48.         self.reset()
  49.